home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_nedit.idb / usr / freeware / doc / nedit-5.0.2 / README.z / README
Encoding:
Text File  |  1998-05-21  |  24.8 KB  |  539 lines

  1.                      NEdit Version 5.0.2, March 11, 1998
  2.          
  3.  
  4. PRODUCT DESCRIPTION
  5.  
  6. NEdit is a standard GUI (Graphical User Interface) style text editor for
  7. programs and plain-text files.  Users of Macintosh and MS Windows based text
  8. editors should find NEdit a familiar and comfortable environment.  NEdit
  9. provides all of the standard menu, dialog, editing, and mouse support, as
  10. well as all of the standard shortcuts to which the users of modern GUI based
  11. environments are accustomed.  For users of older style Unix editors, welcome
  12. to the world of mouse-based editing!
  13.  
  14. Please be sure to check the platform specific README files, i.e. README.sun
  15. and README.ibm, for additional information about your particular system.
  16.  
  17. ----------------------------------------------------------------------------
  18.  
  19.                              TERMS AND CONDITIONS
  20.                              ====================
  21.  
  22. This software has been made freely available with a request for
  23. collaborative input subject to standard Fermitools Terms and Conditions
  24. given in full below.
  25.  
  26. ----------------------------------------------------------------------------
  27.  
  28. AUTHORS
  29.  
  30.     Mark Edel, Joy Kyriakopulos, Arnulfo Zepeda-Navratil, Suresh Ravoor, Donna
  31.     Reid, Jeff Kallenbach
  32.  
  33.     Fermi National Accelerator Laboratory - Mail Station 234
  34.     P.O Box 500
  35.     Batavia, IL 60510
  36.     Internet: nedit_support@fnal.fnal.gov
  37.  
  38. Fermilab Standard Government Sponsorship Notice
  39.  
  40.     This work was performed at Fermi National Accelerator Laboratory,
  41.     which is operated by Universities Research Association, Inc., under
  42.     contract DE-AC02-76CHO3000 with the U.S. Department of Energy.
  43.  
  44.  
  45. ACKNOWLEDGEMENTS
  46.  
  47.     Syntax highlighting patterns were contributed by: Simon T. MacDonald, 
  48.     Maurice Leysens, Matt Majka, Alfred Smeenk, Alain Fargues, Christopher
  49.     Conrad, Scott Markinson, Konrad Bernloehr, Ivan Herman, Patrice Venant,
  50.     Christian Denat, Philippe Couton, Max Vohlken, and Markus Schwarzenberg.
  51.  
  52.     Regular expression code by Henry Spencer
  53.     
  54.     Nedit incorporates an altered version of Henry Spencer's regcomp and
  55.     regexec code adapted for NEdit.  Original copyright notice:
  56.  
  57.     Copyright (c) 1986 by University of Toronto. Written by Henry
  58.     Spencer.  Not derived from licensed software.
  59.  
  60.     Permission is granted to anyone to use this software for any purpose
  61.     on any computer system, and to redistribute it freely, subject to the
  62.     following restrictions:
  63.  
  64.     1. The author is not responsible for the consequences of use of this
  65.     software, no matter how awful, even if they arise from defects in it.
  66.  
  67.     2. The origin of this software must not be misrepresented, either by
  68.     explicit claim or by omission.
  69.  
  70.     3. Altered versions must be plainly marked as such, and must not be
  71.     misrepresented as being the original software.
  72.  
  73.  
  74. VERSION 5.0.2
  75.  
  76. 5.0.2 is a bug fix release with very little new functionality (double-click
  77. selection of ranges of delimiters, $line, $column and $modified macro
  78. variables, smart-indent for Python).  The full list of changes and fixes can be
  79. found in the ReleaseNotes file in the distribution directory. 
  80.  
  81. Version 5.0 was significant upgrade to NEdit, completing the macro language and
  82. adding, syntax highlighting, smart-indent, continuous wrap mode, language
  83. sensitive preferences, and many other new features.
  84.  
  85. Please note that syntax highlighting patterns are mostly user-contributed, and
  86. that syntax highlighting is relatively new to NEdit.  If you don't like the way
  87. your particular language is being highlighted, the patterns are quite easy to
  88. change.  We would like to make the default patterns as robust and correct as
  89. possible, so if you see something wrong, please don't just grumble quietly to
  90. yourself, send mail to nedit_support@fnal.gov.
  91.  
  92. As of this writing, there are no known bugs in this software, except for the
  93. few noted in the Problems/Bugs section of the on-line help, or the FAQ file
  94. and the ReleaseNotes file in the distribution directory.  Please report any
  95. problems, even if you think they are trivial.
  96.     
  97.  
  98. BUILDING NEDIT
  99.  
  100. Pre-built executables are available for most major Unix and VMS systems, so
  101. check ftp.fnal.gov in the /pub/nedit directory, and the contributed software
  102. directory, /pub/nedit/<current-version>/contrib, first.
  103.  
  104. The two directories called source and util contain the sources for NEdit.  Util
  105. should be built first, followed by source.  The makefile in this directory can
  106. be used to build both in sequence if your system is one of the supported
  107. machines and no modifications are necessary to the makefiles.  To build NEdit
  108. from this directory, issue the command: "make <machine-type>_nedit"; where
  109. <machine-type> is one of the supported machine types: sgi, ultrix, sunos,
  110. solaris, hp, dec, or ibm.  For example, to build the Silicon Graphics version,
  111. type:
  112.  
  113.     make sgi_nedit
  114.  
  115. If everything works properly, this will produce an executable called nedit in
  116. the directory called source.
  117.  
  118.  
  119. The Source Directories
  120.  
  121. Since executables are already available for the supported systems, you are
  122. probably not just rebuilding an existing configuration, and need to know more
  123. about how the directories are organized.
  124.  
  125. The util directory builds a library file called libNUtil.a, which is later
  126. linked with the code in the source directory to create the nedit executable.
  127.  
  128. The makefiles in both source directories consist of two parts, a machine
  129. dependent part and a machine independent part.  The machine dependent makefiles
  130. contain machine specific header information and invoke a common machine
  131. independent part called Makefile.common.  To compile the files in either of
  132. these directories, issue the command: "make -f Makefile.<machine-type>"; where
  133. <machine type> is one of the supported machine types.  For example, on a
  134. Silicon Graphics machine, you would type:
  135.  
  136.     make -f Makefile.sgi
  137.  
  138. To add a new machine type or configuration, copy one of the existing machine
  139. dependent makefiles and give it the name of the new system, for example:
  140. Makefile.sony.  Then, make any required changes in the new makefile.
  141.  
  142.  
  143. Building NEdit on VMS Systems
  144.  
  145. Command files are provided for compiling and linking files in the source
  146. and util directories.  comutil.com compiles the files in the util directory
  147. and produces two library files, vmsutils.olb and libutil.olb.  comnedit.com
  148. compiles and links the files in the source directory to produce the nedit.exe
  149. executable.
  150.  
  151.  
  152. A Note about Lesstif
  153.  
  154. NEdit is not quite yet "Freed by Lesstif" (Lesstif is free version of Motif).
  155. If you want to build NEdit from sources, and you want it to be as reliable as
  156. the pre-built, statically-linked, executables you get from ftp.fnal.gov, you
  157. still need a Motif library.  Motif comes free with most commercial Unix
  158. systems, but for freeware systems like Linux and FreeBSD, you must purchase it
  159. separately.  Lesstif is, however, rapidly nearing completion, so by the time
  160. you read it, this warning may no longer be true!
  161.  
  162.  
  163. INSTALLATION
  164.  
  165. NEdit consists of a single, stand-alone executable file which does not require
  166. any special installation.  To install NEdit on Unix systems, simply put the
  167. nedit executable in your path.  On VMS systems, nedit must be defined as a
  168. foreign command so that it can process command line arguments.  For example,
  169. if nedit.exe were in the directory mydir on the disk called mydev, adding the
  170. following line to your login.com file would define the nedit command:
  171.  
  172.     $ ned*it :== $mydev:[mydir]nedit.exe
  173.  
  174. To use NEdit in client/server mode, you also need the nedit client program, nc,
  175. which, again, needs no special installation, except in the VMS case, as above.
  176.  
  177.  
  178. RUNNING NEDIT
  179.  
  180. If you are accessing a host Unix system from a remote workstation or X terminal,
  181. you need to set the Unix environment variable for your display:
  182.  
  183.     % setenv DISPLAY devicename:0
  184.     
  185. where devicename is the network node name of the workstation or X terminal
  186. where you are typing.  On VMS systems, the equivalent command is:
  187.  
  188.     $ set display/create/node=devicename
  189.  
  190. To run NEdit, simply type "nedit", optionally followed by the name of a file or
  191. files to edit.  On-line help is available from the pulldown menu on the far
  192. right of the menu bar.  For more information on the syntax of the nedit command
  193. line, look under the heading of "NEdit Command Line."
  194.  
  195.  
  196. PLATFORM SPECIFIC ISSUES
  197.  
  198. HP-UX Systems
  199.  
  200. If you have an older system, and experience problems, such as random crashing,
  201. installing the patches:
  202.  
  203.     PHSS_5907
  204.     PHSS_5908
  205.  
  206. or their newer counterpart:
  207.  
  208.    PHSS_6439
  209.    PHSS_6440
  210.  
  211. is strongly suggested.  These fix a number of serious problems in HPs X and
  212. Motif libraries.  If you still have problems, despite having installed these
  213. patches, please send mail to nedit_support@fnal.gov.
  214.  
  215. If you are using HPVUE and have trouble setting colors, for example part
  216. of the menu bar stubornly remains at whatever HPVUE's default is, try setting:
  217.  
  218.    nedit*useColorObj: False
  219.  
  220. IBM AIX Systems
  221.  
  222. Due to an optimizer bug in IBM's C compiler, the file, textDisp.c, must be
  223. compiled without optimization on AIX systems.
  224.  
  225. IBM's Motif 1.2 library fixes a number of serious bugs in the earlier libraries
  226. (the Motif 1.1 version has the menu items for setting the font in the current
  227. window disabled, and can occasionally crash on window closing).
  228.  
  229. Linux Systems
  230.  
  231. Some Linux distributions are missing the /usr/X11R6/lib/X11/XKeysymDB file,
  232. which is necessary for running Motif programs.  When XKeysymDB is missing,
  233. NEdit will spew screenfulls of messages about translation table syntax errors,
  234. and many keys won't work.  You can obtain a copy of the XKeysymDB file from
  235. the contrib sub-directory of the NEdit distribution directory.  
  236.  
  237. The default key bindings for arrow keys in fvwm interfere with some of the
  238. arrow key bindings in NEdit, particularly, Ctrl+Arrow and Alt+Arrow.  You
  239. may want to re-bind them either in NEdit (see Customizing -> Key Binding
  240. in the Help menu) or in fvwm in your .fvwmrc file.
  241.  
  242. Please read the note about Lesstif above.  NEdit is not yet certified with
  243. Lesstif.  As of the current Lesstif release (0.82), you will experience quite
  244. a bit of crashing.
  245.  
  246. SGI Systems
  247.  
  248. Beginning with IRIX 6.3, SGI is distributing a customized version of NEdit
  249. along with their operating system releases.  Their installation uses an
  250. app-defaults file (/usr/lib/X11/app-defaults/NEdit) which overrides the
  251. default settings in any new nedit version that you install, and may result in
  252. missing accelerator keys or cosmetic appearance glitches.  If you are
  253. re-installing NEdit for the entire system, just remove the existing app-
  254. defaults file.  If you want to run a newer copy individually, get a copy of
  255. the app-defaults file for this version the contrib sub-directory of the
  256. distribution directory for this version on ftp.fnal.gov (/pub/nedit/<version>/
  257. contrib/nedit.app-defaults), and install it in your home directory or set
  258. XAPPLRESDIR or XUSERFILESEARCHPATH to point to a directory and install it
  259. there.  In all cases, the file should be named simply NEdit.
  260.  
  261. No additional installation or resource settings are necessary on IRIX systems
  262. before 6.3
  263.  
  264. Solaris (SunOS 5.3 and beyond) Systems
  265.  
  266. The nedit_solaris executable may require the environment variable OPENWINHOME
  267. to be set to the directory where Open Windows is installed.  If this is not set
  268. properly, NEdit will spew screenfulls of messages about translation table
  269. syntax errors.
  270.  
  271. Solaris 2.4 -- Add -DDONT_HAVE_GLOB to the CFLAGS line in Makefile.solaris.
  272.  
  273. Solaris 2.5 -- Solaris 2.5 systems were shipped with a bad shared Motif
  274. library, in which the file selection dialog (Open, Save, Save As, Include,
  275. etc.) shows long path names in the file list, but no horizontal scroll bar,
  276. and no way to read the actual file names.  Depending on your system, the
  277. patch is one of ID# 103461-07, # 102226-19, or # 103186-21.  It affects all
  278. Motif based programs which use the library.  If you can't patch your system,
  279. you might want to just try the nedit_sunos executable (from ftp.fnal.gov
  280. /pub/nedit), which is statically linked with a good Motif.  You can also set
  281. the X resource: nedit.stdOpenDialog to True, which at least gives you a text
  282. field where you can enter file names by hand.
  283.  
  284. Solaris 2.6 -- If you're experiencing performance problems (windows come up
  285. slowly), the patch for Sun's shared Motif library is ID# 105284-04.  Installing
  286. the patch alone will improve nedit's performance dramatically.  The patch also
  287. enables a resource, *XmMenuReduceGrabs. Setting this to True will eliminate the
  288. delay completely.
  289.  
  290. SunOS 4.x Systems
  291.  
  292. On some SunOS systems, NEdit will also complain about translation table syntax
  293. errors.  This happens when Motif can't access the keysym database, usually
  294. located in the file /usr/lib/X11/XKeysymDB.  If this file exists on your
  295. system, but NEdit fails to locate it properly, you can set the environment
  296. variable XKEYSYMDB to point to the file.  If you can't find the file, or if
  297. some of the errors persist despite setting XKEYSYMDB, there is a XKeysymDB
  298. which you can use to update or replace your /usr/lib/X11/XKeysymDB file
  299. available in the contrib sub-directory of the NEdit distribution directory.
  300. If you don't want to change your existing XKeysymDB file, make a local copy
  301. and set XKEYSYMDB to point to it.
  302.  
  303. If you find that some of the labeled keys on your keyboard are not properly
  304. bound to the corresponding action in NEdit, try the following:
  305.  
  306.   1) Get a copy of motifbind.sun (for Sun standard keyboards), or
  307.      motifbind.sun_at (for Sun PC style keyboards) from the NEdit contrib
  308.      directory on ftp.fnal.gov:/pub/nedit/v4_0_1/contrib.
  309.   2) Copy it to a file called .motifbind in your home directory.
  310.   3) Shutdown and restart your X server.
  311.  
  312.  
  313. COMPATIBILITY WITH PREVIOUS VERSIONS
  314.  
  315. Existing .nedit Files
  316.  
  317. NEdit 5.0.2 is backward-compatible with .nedit files from older versions
  318. (unless you wrote a .nedit file from the 5.0 beta-test version, or the
  319. experimental syntax highlighting version, as discussed below).  However, if you
  320. are upgrading from a pre-5.0 version, you should check your font settings, and
  321. consider upgrading the original default macro menu entries as discussed below.
  322.  
  323. If you have been using a font other than the default for the text portion of
  324. your NEdit windows, be sure to check the Preferences -> Default Settings ->
  325. Text Font dialog, and select highlighting fonts which match your primary font
  326. in size.  Matching in height is desirable, but not essential, and sometimes
  327. impossible to achive on some systems.  When fonts don't match in height,
  328. turning on syntax highlighting will cause the window size to change slightly. 
  329. NEdit can handle unmatched font sizes (width), but leaving them unmatched means
  330. sometimes columns and indentation don't line up (as with proportional fonts).
  331.  
  332. Most macros written for previous versions will function properly under 5.0's
  333. new macro language.  The most common problems with old macros is lack of a
  334. terminating newline on the last line of the macro, and the addition of "<" and
  335. ">" to the regular expression syntax.  These characters must now be escaped
  336. with \ (backslash).
  337.  
  338. The default macros written from 4.0 versions all work under 5.0, with the
  339. exception of "Unquote Mail Reply", which will fail because it uses the ">"
  340. character in a regular expression, which now must be escaped with "\".  If you
  341. wrote a .nedit file from 4.0, you will have the old version of the macro, which
  342. needs to be updated.
  343.  
  344. The 5.0 defaults for macro menu entries also contain some worthwhile new
  345. commands, and improvements to existing macros.  To see what these new macros
  346. look like, you can temporarily re-name your existing .nedit file and run NEdit
  347. without one.
  348.  
  349. There are several ways to integrate macros from the new version into an
  350. old .nedit file.  If you have not added new macros of your own, simply remove
  351. the line beginning "nedit.macroCommands" and all of the indented lines which
  352. follow it from your existing .nedit file, and NEdit will re-generate the Macro
  353. menu from its stored defaults.
  354.  
  355. If you have added macros of your own:
  356.  
  357.    1) Temporarily re-name your existing .nedit file
  358.    2) Generate a new .nedit file by choosing Save Defaults from the
  359.       Preferences menu.
  360.    3) Copy and paste the new macros from the newly generated .nedit
  361.       file into the "nedit.macroCommands" resource in your old .nedit file.
  362.  
  363. Beta 5.0 .nedit Files
  364.  
  365. If you wrote a .nedit file from the beta-test version of 5.0, you will be
  366. missing one or two highlight styles used by default highlight patterns for
  367. Perl, Verilog, and NEdit Macro, and you will get an error on the FORTRAN
  368. highlight patterns, because the name has changed to "Fortran".  If you want to
  369. preserve your existing .nedit file, you can edit it by hand to change the two
  370. occurences of "FORTRAN" to "Fortran", and either remove the section beginning
  371. "nedit.styles", or if you have made changes to styles that you want to
  372. preserve, re-name your .nedit file, write a new one, and integrate the
  373. new styles into your existing file.
  374.  
  375. Experimental Syntax Highlighting Version .nedit Files
  376.  
  377. If you wrote a .nedit file using the experimental syntax highlighting version
  378. (color_nedit.tar), the syntax of the languageModes resource has changed, and is
  379. not readable with 5.0.  If you want to preserve the .nedit file, you will have
  380. to edit it by hand to remove the line beginning "nedit.languageModes", and all
  381. of the indented lines that follow.  If you made significant changes to language
  382. mode information which you don't want to re-enter via the Language Modes
  383. dialog, you can edit each line of the resource by hand to conform to the new
  384. spec by adding colons to the end).
  385.  
  386.  
  387. FURTHER INFORMATION
  388.  
  389. More information is available in the file nedit.doc in this kit, from NEdit's
  390. on-line help system, and from the enclosed FAQ file.  There is also a web page
  391. for NEdit at: http://www-pat.fnal.gov/nirvana/nedit.html, or find out more
  392. about Fermilab: http://www.fnal.gov, or information on other publicly available
  393. Fermilab software: http://www.fnal.gov/fermitools.  For discussion with other
  394. NEdit users, or to receive notification of new releases and news about news,
  395. you can subscribe to one or both of the official nedit mailing lists.  You'll
  396. find information on subscribing in the NEdit on-line help under Mailing Lists.  
  397.  
  398.  
  399. SUPPORT
  400.  
  401. Help with the installation or use of NEdit is available by sending mail to
  402.  
  403.                         nedit_support@fnal.fnal.gov
  404.  
  405. which is auto-forwarded to the group in charge of NEdit support at Fermilab.
  406.  
  407. This software is furnished by Fermilab on an "as is" basis as a service 
  408. to the wider community with the goal of stimulating collaborative use and 
  409. further development.
  410.  
  411. Provision of the software implies no commitment of support by Fermilab.
  412.  
  413. The Fermilab Computing Division is open to discussing other levels of 
  414. support for use of the software with responsible and committed users and 
  415. collaborators.
  416.  
  417. Use of the software in experiments at Fermilab will be assured of a level 
  418. of support as agreed to through the standard Memorandum Of Understanding 
  419. process.
  420.  
  421. Users may send mail to the mail address given above, with the expectation 
  422. that it will be read and noted.
  423.  
  424. Fermitools Special Products
  425.  
  426. Because of the special support needed for a few selected products Fermilab 
  427. is only able to support the software under special agreement.  The support 
  428. offered will be discussed and negotiated on an individual basis and may be 
  429. different for different users.  To initiate discussions send mail to the 
  430. mail address given above.
  431.  
  432.  
  433. ----------------------------------------------------------------------------
  434.  
  435.                          TERMS AND CONDITIONS IN FULL
  436.                          ============================
  437.  
  438. ----------------------------------------------------------------------------
  439.     Fermitools Software Legal Information - October 16, 1997
  440. ----------------------------------------------------------------------------
  441.  
  442. COPYRIGHT STATUS:  Fermi National Accelerator Laboratory (FNAL) documents are
  443. sponsored by the U.S. Department of Energy under Contract No.
  444. DE-AC02-76CH03000.  Therefore, the U.S. Government retains a non-exclusive,
  445. royalty-free license to publish or reproduce these documents or software for
  446. U.S. Government purposes.  All documents and software available from this
  447. server are protected under the U.S. and Foreign Copyright Laws, and FNAL
  448. reserves all rights.
  449.  
  450. Terms and Conditions
  451. --------------------
  452. When a User distributes or otherwise obtains a software package included in
  453. the Fermilab Software Tools Program, the user agrees to abide by the Terms and
  454. Conditions of the Program below:
  455.  
  456. o   Any redistribution of the software shall be accompanied by this
  457.     INFORMATION/LICENSE file and the product's ORIGIN file.
  458.  
  459. o   The User shall acknowledge the origin of the software as set forth 
  460.     below:
  461.  
  462.         "This work was performed at Fermi National Accelerator Laboratory, 
  463.         operated by Universities Research Association, Inc., under contract 
  464.         DE-AC02-76CH03000 with the U.S. Department of Energy."
  465.  
  466. o   The user is asked to feed back problems, benefits, and/or suggestions 
  467.     about the software to the Fermilab Software Providers and/or Fermitools 
  468.     management.
  469.  
  470. o   Any distribution of the software available from this server shall be at
  471.     no charge, except for nominal media and distribution costs.  To obtain a
  472.     license to commercialize any of the software programs available from this
  473.     server, contact FNAL's Office of Research and Technology Applications,
  474.     P.O. Box 500, MS-200, Batavia, IL 60510-0500.
  475.  
  476.  
  477. Indemnification by User of Third Party Claims and Disclaimer of Liability
  478. -------------------------------------------------------------------------
  479. The User, his/her directors, officers, employees, and agents hereby release
  480. and waive all claims against Universities Research Association, Inc. (URA)
  481. operator of Fermi National Accelerator Laboratory, its trustees, overseers,
  482. directors, officers, employees, agents, subcontractors, successors and
  483. assigns, for any and all liability and damages arising from the reproduction,
  484. use or other disposition of the software.  The User shall indemnify URA and
  485. the U.S. Government for all damages, costs or expenses, including attorney's
  486. fees, arising from the utilization of the software, including, but not limited
  487. to, the making, using, selling or exporting of products, processes or services
  488. derived from the Software.  The User agrees to indemnify, hold harmless and
  489. defend URA, its trustees, overseers, directors, officers, employees, agents,
  490. subcontractors, successors and assigns, against any and all liability, damage,
  491. loss, cost, charge, claim, demand, fee or expense of every nature and kind
  492. which may at any time hereafter, be sustained by URA by reason of claims of
  493. third parties arising out of alleged acts or omissions of the User in the
  494. reproduction, use or other disposition of the Software.  
  495.  
  496. The User agrees that URA, its trustees, overseers, directors, officers,
  497. employees, agents, subcontractors, successors and assigns shall not be liable
  498. under any claim, charge, or demand, whether in contract, tort, criminal law,
  499. or otherwise, for any and all loss, cost, charge, claim, demand, fee, expense,
  500. or damage of every nature and kind arising out of, connected with, resulting
  501. from or sustained as a result of the use of the software programs available
  502. from this server.  In no event shall URA be liable for special, direct,
  503. indirect or consequential damages, losses, costs, charges, claims, demands,
  504. fees or expenses of any nature or kind.
  505.  
  506. Disclaimer of Warranties
  507. ------------------------
  508. The software is provided on an "as is" basis only.  URA makes no
  509. representations, express or implied.  URA MAKES NO REPRESENTATIONS OR
  510. WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE, or
  511. assumes any legal liability or responsibility for the accuracy, completeness,
  512. or usefulness of any information, apparatus, product or process disclosed, or
  513. represents that the Software will not infringe any privately held patent,
  514. copyright, or trademark.  The entire risk as to the results and the
  515. performance of this software is assumed by the User.
  516.  
  517. Disclaimer of Endorsement
  518. -------------------------
  519. Reference herein to any specific commercial products, process, or service by
  520. tradename, trademark, manufacturer or otherwise, does not constitute or imply
  521. its endorsement, recommendation, or favoring by the United States Government,
  522. U.S. Department of Energy or URA.  The views and opinions of individuals
  523. expressed herein do not necessarily state or reflect those of the United
  524. States Government, U.S. Department of Energy or URA and shall not be used for
  525. advertising or product endorsement purposes.
  526.  
  527. Liabilities of the Government
  528. -----------------------------
  529. This software is provided by URA, independent from its Prime Contract with the
  530. U.S. Department of Energy.  URA is acting independently from the Government
  531. and in its own private capacity and is not acting on behalf of the U.S.
  532. Government, nor as its contractor nor its agent.  Correspondingly, it is
  533. understood and agreed that the U.S. Government has no connection to this
  534. software and in no manner whatsoever shall be liable for nor assume any
  535. responsibility or obligation for any claim, cost, or damages arising out of or
  536. resulting from the use of the software available from this server.
  537.  
  538.  
  539.